|
|
|
|
CheckBoxEventHandler Delegate |
Represents the method that will handle the CheckBoxClicked event.
Syntax SftTree Class (Softelvdm.SftTreeNET)
VB |
Public Delegate Sub CheckBoxEventHandler( _ |
C# |
public delegate void CheckBoxEventHandler( |
C++ |
public: delegate void CheckBoxEventHandler( |
e
A PartEventArgs that contains the event data.
sender
The source of the event.
The declaration of your CheckBoxClicked event handler must have the same parameters as the CheckBoxEventHandler delegate declaration.
Comments
The CheckBoxEventHandler delegate represents the method that will handle the CheckBoxClicked event.
A CheckBoxEventHandler delegate is created by an application to identify the method that will handle the CheckBoxClicked event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information about handling events with delegates, see Handling and Raising Events (.NET Documentation).